/* =====================================================
   HARUN HUTAHAEAN — Portfolio CSS
   ===================================================== */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=DM+Sans:wght@300;400;500&display=swap");

:root {
  --gold: #c9a84c;
  --gold-light: #f0d483;
  --gold-glow: rgba(201, 168, 76, 0.18);
  --dark: #0d0d0d;
  --dark-2: #1a1a1a;
  --dark-3: #242424;
  --white: #f5f0e8;
  --muted: #888880;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
}

/* ─── CUSTOM CURSOR ─── */
.cursor {
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    transform 0.1s ease,
    width 0.25s ease,
    height 0.25s ease;
}
.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    transform 0.12s ease,
    width 0.25s ease,
    height 0.25s ease,
    opacity 0.25s ease;
}
body.cursor-hover .cursor-dot {
  width: 14px;
  height: 14px;
}
body.cursor-hover .cursor-ring {
  width: 56px;
  height: 56px;
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

/* ─── NOISE OVERLAY ─── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

/* ─── CURSOR SPOTLIGHT ─── */
.spotlight {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(
    200px circle at var(--mx, 50%) var(--my, 50%),
    rgba(201, 168, 76, 0.04) 0%,
    transparent 60%
  );
  transition: background 0.1s;
}

/* ─── NAVBAR ─── */
.navbar {
  background: rgba(13, 13, 13, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  padding: 1rem 0;
  transition:
    padding 0.3s ease,
    background 0.3s ease;
}
.navbar.scrolled {
  padding: 0.5rem 0;
  background: rgba(13, 13, 13, 0.95);
  border-bottom-color: rgba(201, 168, 76, 0.15);
}
.navbar-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold) !important;
  letter-spacing: 1px;
  position: relative;
}
.navbar-brand::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}
.navbar-brand:hover::after {
  width: 100%;
}
.navbar-nav .nav-link {
  color: var(--muted) !important;
  font-size: 0.8rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: color 0.3s;
  margin: 0 0.5rem;
  position: relative;
  padding-bottom: 4px !important;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover {
  color: var(--gold) !important;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active-link::after {
  width: 100%;
}
.navbar-nav .nav-link.active-link {
  color: var(--gold) !important;
}
.navbar-toggler {
  border-color: rgba(201, 168, 76, 0.3);
  cursor: none;
}
.navbar-toggler-icon {
  filter: invert(0.7) sepia(1) saturate(3) hue-rotate(5deg);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 75% 50%,
      rgba(201, 168, 76, 0.07) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 60% at 20% 80%,
      rgba(201, 168, 76, 0.04) 0%,
      transparent 60%
    );
}
/* animated grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridDrift 20s linear infinite;
  opacity: 0.6;
}
@keyframes gridDrift {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 80px 80px;
  }
}
.hero-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 168, 76, 0.12),
    transparent
  );
  transform: translateY(-50%);
}
.hero-subtitle {
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.9s 0.3s forwards;
}
.hero-subtitle::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}
.hero h1 span {
  color: var(--gold);
}

/* glitch effect on hover */
@keyframes glitch {
  0% {
    text-shadow:
      2px 0 var(--gold),
      -2px 0 rgba(201, 168, 76, 0.3);
  }
  25% {
    text-shadow:
      -3px 0 var(--gold),
      3px 0 rgba(201, 168, 76, 0.3);
    clip-path: inset(20% 0 60% 0);
  }
  50% {
    text-shadow:
      3px 0 var(--gold-light),
      -3px 0 rgba(201, 168, 76, 0.2);
    clip-path: inset(60% 0 10% 0);
  }
  75% {
    text-shadow:
      -1px 0 var(--gold),
      1px 0 rgba(201, 168, 76, 0.3);
  }
  100% {
    text-shadow: none;
  }
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 480px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}
.hero-cta {
  opacity: 0;
  animation: fadeUp 0.9s 0.9s forwards;
}

/* ─── BUTTONS ─── */
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 14px 36px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  cursor: none;
}
.btn-gold::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: translateX(-101%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.btn-gold span {
  position: relative;
  z-index: 1;
}
.btn-gold:hover::before {
  transform: translateX(0);
}
.btn-gold:hover {
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(201, 168, 76, 0.3);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 13px 36px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-block;
  cursor: none;
}
.btn-outline-gold:hover {
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* ─── HERO IMAGE ─── */
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1s 0.6s forwards;
}
.hero-img-frame {
  position: relative;
  width: 360px;
  max-width: 100%;
}
.hero-img-frame::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  z-index: 0;
  animation: borderPulse 4s ease-in-out infinite;
}
@keyframes borderPulse {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.5;
  }
}
.hero-img-frame::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  background: rgba(201, 168, 76, 0.04);
  z-index: 0;
}
.hero-placeholder-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--dark-3) 0%, #2a2416 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(201, 168, 76, 0.1);
  overflow: hidden;
}
.hero-placeholder-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(20%) contrast(1.05);
  transition: filter 0.5s ease;
}
.hero-placeholder-img:hover img {
  filter: grayscale(0%) contrast(1.1);
}

/* gold shimmer on image */
.hero-placeholder-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 40%,
    rgba(201, 168, 76, 0.06) 60%,
    transparent 80%
  );
  background-size: 200% 200%;
  animation: shimmer 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
@keyframes shimmer {
  0% {
    background-position: 200% 200%;
  }
  50% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 200%;
  }
}

/* ─── SCROLL INDICATOR ─── */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-indicator span {
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.8);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ─── SECTION SHARED ─── */
section {
  padding: 110px 0;
}
.section-tag {
  font-size: 0.68rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.section-title span {
  color: var(--gold);
}
.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}
.section-divider::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: white;
  opacity: 0.4;
  animation: sweep 3s ease-in-out infinite;
}
@keyframes sweep {
  0% {
    left: -100%;
  }
  50%,
  100% {
    left: 200%;
  }
}
.section-desc {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  max-width: 700px;
  text-align: justify;
  margin: 0 auto 5rem;
}

/* ─── ABOUT ─── */
#about {
  background: var(--dark-2);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}
.about-quote {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}
.about-quote::before {
  content: "\201C";
  position: absolute;
  left: 0.75rem;
  top: -0.5rem;
  font-size: 4rem;
  color: rgba(201, 168, 76, 0.07);
  font-style: normal;
  line-height: 1;
  pointer-events: none;
}

/* ─── SKILL BARS ─── */
.skill-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--white);
}
.skill-bar-label span {
  color: var(--gold);
}
.skill-bar-track {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 1.5rem;
  position: relative;
  overflow: visible;
}
.skill-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  position: relative;
  width: 0;
  transition: width 1.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.skill-bar-fill::after {
  content: "";
  position: absolute;
  right: -4px;
  top: -3px;
  width: 8px;
  height: 8px;
  background: var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.6);
}

/* tool badge */
.tool-badge {
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 1.25rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.tool-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-glow);
  opacity: 0;
  transition: opacity 0.3s;
}
.tool-badge:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-4px);
}
.tool-badge:hover::before {
  opacity: 1;
}
.tool-badge i {
  font-size: 1.5rem;
  color: var(--gold);
  position: relative;
}
.tool-badge-name {
  font-size: 0.68rem;
  letter-spacing: 1px;
  color: var(--muted);
  margin-top: 8px;
  text-transform: uppercase;
  position: relative;
}

/* ─── SERVICES ─── */
#services {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
#services::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.service-card {
  border: 1px solid rgba(201, 168, 76, 0.1);
  padding: 2.5rem 2rem;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 100%,
    rgba(201, 168, 76, 0.06) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
}
.service-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-8px);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover::after {
  opacity: 1;
}
.service-num {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.06);
  line-height: 1;
  margin-bottom: 1rem;
}
.service-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
  transition:
    background 0.3s,
    box-shadow 0.3s;
}
.service-card:hover .service-icon {
  background: rgba(201, 168, 76, 0.08);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.15);
}
.service-card h4 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

/* ─── PORTFOLIO ─── */
#portfolio {
  background: var(--dark-2);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}
.portfolio-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.18);
  color: var(--muted);
  padding: 8px 22px;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: none;
  transition: all 0.3s ease;
  font-family: "DM Sans", sans-serif;
  position: relative;
  overflow: hidden;
}
.filter-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform 0.3s ease;
  z-index: 0;
}
.filter-btn span {
  position: relative;
  z-index: 1;
}
.filter-btn:hover span,
.filter-btn.active span {
  color: var(--dark);
}
.filter-btn:hover::before,
.filter-btn.active::before {
  transform: translateY(0);
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold);
  color: var(--dark);
}

.project-card {
  cursor: none;
  margin-bottom: 1.5rem;
  background: var(--dark-3);
  overflow: hidden;
  position: relative;
}
.project-img {
  width: 100%;
  aspect-ratio: 4/3;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.project-card:hover .project-img {
  transform: scale(1.05);
}
.project-overlay {
  padding: 0.9rem 1.1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: var(--dark-3);
  transition: background 0.3s;
}
.project-card:hover .project-overlay {
  background: #2a2820;
}
.project-info {
  display: flex;
  flex-direction: column;
}
.project-tag {
  font-size: 0.58rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.15rem;
}
.project-title {
  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
  color: var(--white);
}
.project-arrow {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.project-card:hover .project-arrow {
  color: var(--gold);
  border-color: rgba(201, 168, 76, 0.3);
  transform: rotate(0deg) scale(1.1);
}
.project-item {
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.project-item.hidden {
  display: none;
}

/* ─── CONTACT ─── */
#contact {
  background: var(--dark-2);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.contact-icon-box {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  transition: all 0.3s;
}
.contact-info-item:hover .contact-icon-box {
  background: rgba(201, 168, 76, 0.08);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.12);
}
.contact-info-label {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-info-value {
  color: var(--white);
  font-size: 0.95rem;
}
.contact-form-wrap {
  background: var(--dark-3);
  border: 1px solid rgba(201, 168, 76, 0.1);
  padding: 3rem;
}
.form-control-dark {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 0;
  color: var(--white);
  padding: 12px 0;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s;
  width: 100%;
}
.form-control-dark:focus {
  outline: none;
  border-bottom-color: var(--gold);
  background: transparent;
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.06);
}
.form-control-dark::placeholder {
  color: var(--muted);
  font-size: 0.85rem;
}
.form-group-dark {
  margin-bottom: 2rem;
}
.form-label-dark {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
  display: block;
}

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  padding: 3rem 0;
}
.footer-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
}
.footer-tagline {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}
.social-link {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(201, 168, 76, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.35s ease;
  margin-right: 0.5rem;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.15);
}
.footer-copy {
  color: var(--muted);
  font-size: 0.78rem;
}

/* ─── FLOATERS & MISC ─── */
.floating-num {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Playfair Display", serif;
  font-size: 15rem;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.02);
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}

/* ─── FADE-UP ANIMATION ─── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.85s ease,
    transform 0.85s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.22s;
}
.delay-3 {
  transition-delay: 0.34s;
}
.delay-4 {
  transition-delay: 0.46s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  body {
    cursor: auto;
  }
  .cursor {
    display: none;
  }
  .hero {
    padding: 100px 0 80px;
    text-align: center;
  }
  .hero-image-wrap {
    margin-top: 3rem;
  }
  .hero-img-frame {
    width: 280px;
  }
  .hero-desc {
    margin: 0 auto 2.5rem;
  }
  .hero-subtitle {
    justify-content: center;
  }
  .floating-num {
    display: none;
  }
  .section-desc {
    max-width: 100%;
  }
  .scroll-indicator {
    display: none;
  }
  .contact-form-wrap {
    padding: 2rem 1.5rem;
  }
}
