/* ========== CUSTOM FONTS ========== */
@font-face {
  font-family: 'RockbayD';
  src: url('../public/Rockbay_D.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Simple California';
  src: url('../public/fonts/Simple%20Callifornia.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ========== DESIGN TOKENS ========== */
:root {
  --font-custom: 'Simple California', cursive;
  --font-calligraphy: 'RockbayD', cursive;
  --white: #FFFFFF;
  --off-white: #FAF8F4;
  --light-gray: #F0F0EC;
  --border-gray: #E5E5E0;
  --text-muted: #888888;
  --text-body: #555555;
  --text-heading: #1A1A2E;
  --dark: #1A1A1A;
  --dark-bg: #111111;
  --accent-green: #4CAF50;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 50px;
  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.1);
  --container: 1400px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== UTILITY ========== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: capitalize;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.section-label .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  display: inline-block;
}

.section-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #333;
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: transparent;
  color: var(--text-heading);
  border: 1.5px solid var(--border-gray);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
}

.btn-outline:hover {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--white);
}

.arrow-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ========== NAVIGATION ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.4);
  /* Liquid glass base color */
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-heading);
  border-radius: var(--radius-pill);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-heading);
}

.nav-cta {
  padding: 10px 22px;
  background: var(--dark);
  color: var(--white) !important;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.nav-cta:hover {
  background: #333 !important;
  transform: translateY(-1px);
}

/* ========== HERO SECTION ========== */
.hero {
  padding-top: 120px;
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--off-white);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-hello-container {
  width: 100%;
  max-width: 320px;
  min-height: 180px;
  margin-bottom: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

#hello-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

#hello-text {
  font-family: var(--font-calligraphy);
  font-size: 100px;
  opacity: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}

.hero-stats {
  display: flex;
  gap: 74px;
  margin-bottom: 80px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.number-wrapper {
  display: flex;
  align-items: center;
}

.hero-stat .number {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
}

.hero-stat .label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: capitalize;
}

.hero-title {
  font-family: var(--font-custom);
  font-size: clamp(72px, 10vw, 130px);
  font-weight: 700;
  color: #ea8299;
  line-height: 0.95;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.hero-tagline {
  font-size: 14px;
  color: var(--text-body);
  max-width: 360px;
  line-height: 1.6;
  text-align: center;
}

.hero-tagline span {
  color: var(--text-heading);
  font-weight: 600;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
}

.hero-scroll:hover {
  color: var(--text-heading);
}

.hero-scroll svg {
  animation: bounceDown 2s infinite;
}

@keyframes bounceDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper img {
  height: calc(100vh - 80px);
  width: auto;
  max-width: 300%;
  display: block;
  object-fit: contain;
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-muted);
  background: linear-gradient(135deg, var(--light-gray), var(--border-gray));
}

/* ========== BANNER STATS ========== */
.banner-stats-section {
  padding: 2px 0;
  margin-top: -40px;
  position: relative;
  z-index: 10;
  background: var(--off-white);
}

.ecosystem-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #000000;
  padding: 18px 32px;
  border-radius: 20px;
  color: var(--white);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.banner-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.banner-avatar img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
}

.banner-handle {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.banner-center {
  display: flex;
  align-items: center;
  gap: 32px;
}

.social-icon {
  transition: var(--transition);
  display: inline-flex;
  opacity: 1;
}

.social-icon:hover {
  transform: scale(1.1);
}

.social-icon.icon-x {
  color: #FFFFFF;
}

.social-icon.icon-discord {
  color: #5865F2;
}

.social-icon.icon-telegram {
  color: #2AABEE;
}

.banner-right {
  display: flex;
  gap: 32px;
}

.banner-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.stat-value-wrapper {
  display: flex;
  align-items: center;
}

.stat-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.stat-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========== ART GALLERY ========== */
.art-gallery {
  padding: 80px 0 0;
  background: linear-gradient(180deg, #fff5f6 0%, #d8a7b1 50%, #000000 100%);
  overflow: hidden;
}

.art-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--text-heading);
}

.art-track-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.art-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.track-1 {
  animation: marquee 40s linear infinite;
}

.track-2 {
  animation: marquee 45s linear infinite reverse;
}

.art-item {
  width: 150px;
  height: 150px;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  background: var(--light-gray);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.art-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.art-item:hover img {
  transform: scale(1.1);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ========== HAMBURGER MENU ========== */
.about-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 50px;
}

.about-left {
  max-width: 460px;
}

.about-left h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-heading);
}

.about-left p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.8;
}

.about-right {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.about-stat-card {
  text-align: center;
}

.about-stat-card .value {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--text-heading);
}

.about-stat-card .desc {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 160px;
  line-height: 1.5;
}

.about-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--light-gray);
  flex-shrink: 0;
}

.about-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.about-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.about-feature .check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feature .check svg {
  width: 14px;
  height: 14px;
  color: white;
}

.about-feature p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.6;
}

/* ========== PORTFOLIO CAROUSEL ========== */
.portfolio-carousel {
  padding: 40px 0 80px;
  background: var(--white);
  overflow: hidden;
}

.carousel-track-wrapper {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 40px;
}

.carousel-card {
  flex: 0 0 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--light-gray);
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.carousel-card-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8e8e4, #d5d5d0);
  font-size: 13px;
  color: var(--text-muted);
}

.carousel-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.carousel-card-info .title {
  font-size: 14px;
  font-weight: 600;
  color: white;
}

.carousel-card-info .meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.carousel-arrow-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.carousel-arrow-btn:hover {
  background: #333;
  transform: translateY(-50%) scale(1.05);
}

.carousel-arrow-btn.prev {
  left: 10px;
}

.carousel-arrow-btn.next {
  right: 10px;
}

.carousel-center-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.carousel-center-btn:hover {
  background: #333;
  transform: translate(-50%, -50%) scale(1.1);
}

.carousel-labels {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 24px 40px 0;
}

.carousel-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-body);
}

.carousel-label svg {
  width: 16px;
  height: 16px;
}

/* ========== EXPERIENCE (ABOUT ME) ========== */
.experience {
  padding: 120px 0;
  background: #000;
  color: #fff;
}

.experience .section-label {
  color: rgba(255, 255, 255, 0.6);
}

.experience .dot {
  background: #fff;
}

.accent-text {
  color: #cf4376;
}

.experience .section-title {
  color: #fff;
}

.experience .btn-outline {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.experience .btn-outline:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.experience-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
  gap: 80px;
}

.experience-header-left {
  max-width: 450px;
  flex: 1;
}

.experience-header-right {
  max-width: 450px;
  flex: 1;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  padding-top: 50px;
}

.exp-company h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.exp-company .date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.exp-role {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.exp-tag {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
}

.exp-tag.filled {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.exp-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition);
  cursor: pointer;
}

.exp-arrow:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.experience-item {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.experience-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.exp-featured-text {
  font-size: 14px;
  color: #fff;
  line-height: 1.7;
  max-width: 500px;
}

.exp-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition);
  cursor: pointer;
}

.exp-arrow:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.exp-featured {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  margin-top: -1px;
}

.exp-featured-images {
  display: flex;
  gap: 12px;
}

.exp-featured-img {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exp-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.exp-featured-text {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.6;
  max-width: 400px;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  padding: 100px 0;
  background: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.cta-banner-inner {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  padding: 80px 40px;
  text-align: center;
  background: linear-gradient(135deg, #b8c6a0, #8fae6e, #a3b87e);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  opacity: 0.4;
  pointer-events: none;
}

.cta-banner-bg-item {
  width: 200px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--white);
  max-width: 500px;
  line-height: 1.2;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.cta-banner p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  z-index: 2;
}

/* ========== LATEST WORKS ========== */
.latest-works {
  padding: 100px 0;
  background: var(--off-white);
}

.latest-works-header {
  text-align: center;
  margin-bottom: 50px;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.work-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
  cursor: pointer;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.work-card-image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #e8e8e4, #d5d5d0);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.work-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-card-image .placeholder {
  font-size: 13px;
  color: var(--text-muted);
}

.work-card-arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}

.work-card:hover .work-card-arrow {
  opacity: 1;
  transform: translateY(0);
}

.work-card-info {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.work-card-info .title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-heading);
}

.work-card-info .meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

.works-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.works-footer span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ========== BLOG ========== */
.blog {
  padding: 100px 0;
  background: var(--white);
}

.blog-header {
  text-align: center;
  margin-bottom: 50px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--off-white);
  transition: var(--transition);
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.blog-card-image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #e8e8e4, #d5d5d0);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 8px;
}

.blog-badge {
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-badge.red {
  background: #E53935;
  color: white;
}

.blog-badge.yellow {
  background: #FDD835;
  color: #1A1A1A;
}

.blog-badge.green {
  background: #43A047;
  color: white;
}

.blog-badge.time {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-card-content {
  padding: 22px 20px;
}

.blog-card-content h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-heading);
  line-height: 1.5;
}

/* ========== CONTACT CTA ========== */
.contact-cta {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}

.contact-cta h2 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 16px;
}

.contact-cta p {
  font-size: 14px;
  color: var(--text-body);
  max-width: 500px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--dark-bg);
  padding: 40px 0;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 6px;
}

.footer-links a {
  padding: 8px 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-pill);
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.footer-email {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}

/* ========== FINAL CTA & FOOTER ========== */
.final-cta {
  padding: 180px 0;
  background-color: var(--off-white);
  position: relative;
  overflow: visible;
}

.cta-wave {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.cta-wave.top {
  top: -1px;
}

.cta-wave.bottom {
  bottom: -1px;
}

.cta-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}

.cta-wave .shape-fill {
  fill: #000000;
}

.final-cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-content {
  max-width: 600px;
}

.cta-heading {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 30px;
  line-height: 1.1;
  max-width: 500px;
}

.cta-heading span {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  display: inline-block;
  margin-left: 8px;
  color: #333;
}

.cta-email-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.cta-email-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-logo-bg {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  opacity: 0.05;
  filter: blur(5px);
  pointer-events: none;
}

.cta-logo-bg img {
  width: 100%;
  height: auto;
}

.site-footer {
  background: #000;
  color: #fff;
  padding: 80px 0 40px;
}

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

.footer-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.footer-email-link {
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.footer-social-icon {
  color: #fff;
  opacity: 0.6;
  transition: var(--transition);
}

.footer-social-icon:hover {
  opacity: 1;
  transform: translateY(-2px);
}

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

.footer-menu-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-menu-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.footer-menu-col a:hover {
  color: #fff;
}

.footer-brand {
  display: flex;
  justify-content: flex-end;
}

.footer-logo {
  width: 40px;
  height: auto;
  opacity: 0.8;
}

/* ==========================================================
   RESPONSIVE BREAKPOINTS — Consolidated
   ========================================================== */

/* ---- TABLET (max-width: 1024px) ---- */
@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }

  /* Nav */
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  /* Hero */
  .hero {
    padding-top: 100px;
    min-height: auto;
    padding-bottom: 40px;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-hello-container {
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-tagline {
    text-align: center;
    margin: 0 auto;
  }

  .hero-image {
    order: -1;
  }

  .hero-image-wrapper {
    max-width: 100%;
  }

  .hero-image-wrapper img {
    height: auto;
    width: 100%;
    max-height: 400px;
  }

  .hero-stats {
    justify-content: center;
    margin-left: 0;
    margin-bottom: 40px;
  }

  .hero-scroll {
    display: none;
  }

  /* Banner */
  .ecosystem-banner {
    flex-direction: column;
    gap: 20px;
    padding: 24px 20px;
    text-align: center;
  }

  .banner-left {
    justify-content: center;
  }

  .banner-center {
    justify-content: center;
  }

  .banner-right {
    justify-content: center;
    width: 100%;
    gap: 20px;
  }

  .banner-stat {
    align-items: center;
  }

  /* Experience / About */
  .experience {
    padding: 80px 0;
  }

  .experience-header {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 30px;
  }

  .experience-header-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
  }

  .experience-header-right {
    max-width: 100%;
    padding-top: 0;
  }

  .experience-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .exp-featured {
    grid-template-columns: auto 1fr auto;
  }

  /* CTA */
  .final-cta {
    padding: 120px 0;
  }

  .cta-heading {
    font-size: 38px;
  }

  .cta-logo-bg {
    width: 250px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1.5fr;
  }

  .footer-brand {
    grid-column: span 2;
    justify-content: center;
    margin-top: 40px;
  }

  /* Art */
  .art-item {
    width: 130px;
    height: 130px;
  }
}

/* ---- MOBILE (max-width: 768px) ---- */
@media (max-width: 768px) {
  .hero-title {
    font-size: 64px;
  }

  .hero-stats {
    gap: 30px;
  }

  .art-item {
    width: 110px;
    height: 110px;
    border-radius: 14px;
  }

  .art-track {
    gap: 12px;
  }

  .art-track-wrapper {
    gap: 12px;
  }

  .section-title {
    font-size: 30px;
  }

  .cta-heading {
    font-size: 32px;
  }

  .final-cta {
    padding: 100px 0;
  }

  .final-cta .container {
    flex-direction: column;
    text-align: center;
  }

  .cta-logo-bg {
    position: static;
    transform: none;
    margin: 30px auto 0;
    width: 180px;
    opacity: 0.08;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-menu-grid {
    gap: 20px;
    justify-items: center;
  }

  .footer-brand {
    grid-column: auto;
    justify-content: center;
  }

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

  .exp-featured {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
    padding: 24px 0;
  }

  .exp-featured-images {
    justify-content: center;
  }

  .banner-stats-section {
    margin-top: -20px;
  }

  .banner-right {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .banner-stat {
    align-items: center;
  }
}

/* ---- SMALL MOBILE (max-width: 480px) ---- */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .navbar {
    padding: 12px 0;
  }

  .navbar .container {
    padding: 0 16px;
  }

  .nav-logo img {
    width: 28px;
    height: 28px;
  }

  .hero {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .hero-hello-container {
    max-width: 200px;
  }

  #hello-text {
    font-size: 70px;
  }

  .hero-title {
    font-size: 48px;
    letter-spacing: -1px;
  }

  .hero-tagline {
    font-size: 13px;
    max-width: 280px;
  }

  .hero-image-wrapper img {
    max-height: 300px;
  }

  .art-gallery {
    padding: 50px 0 0;
  }

  .art-title {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .art-item {
    width: 100px;
    height: 100px;
    border-radius: 12px;
  }

  .art-track {
    gap: 10px;
  }

  .art-track-wrapper {
    gap: 10px;
  }

  .experience {
    padding: 60px 0;
  }

  .section-title {
    font-size: 26px;
  }

  .experience-header-right {
    font-size: 13px;
  }

  .exp-featured-img {
    width: 60px;
    height: 60px;
  }

  .exp-featured-text {
    max-width: 100%;
    font-size: 12px;
  }

  .experience-item {
    padding: 20px 0;
  }

  .exp-company h4 {
    font-size: 14px;
  }

  .exp-role {
    font-size: 13px;
  }

  .ecosystem-banner {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .banner-handle {
    font-size: 14px;
  }

  .banner-avatar img {
    width: 36px;
    height: 36px;
  }

  .social-icon svg {
    width: 24px;
    height: 24px;
  }

  .banner-center {
    gap: 20px;
  }

  .final-cta {
    padding: 80px 0;
  }

  .cta-heading {
    font-size: 28px;
  }

  .cta-email-btn {
    padding: 14px 24px;
    font-size: 14px;
  }

  .cta-wave svg {
    height: 60px;
  }

  .footer-email-link {
    font-size: 16px;
  }
}

/* ========== CONTACT FORM ========== */
.contact-form .form-group {
  margin-bottom: 20px;
  text-align: left;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  color: var(--text-heading);
  background: var(--white);
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--dark);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
}