/* ============================================================
   ORIA STUDIO — Premium Dark-Theme Stylesheet v2.0
   ============================================================ */

/* ----- Reset & Base ----- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0A0A0A;
  color: #FFFFFF;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  cursor: none;
}

a, button, input, select, textarea, .bento-card, .service-card, .pricing-card, .social-link {
  cursor: none;
}

::selection {
  background: rgba(212, 168, 83, 0.3);
  color: #FFFFFF;
}

/* ----- Scrollbar ----- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #050505; }
::-webkit-scrollbar-thumb { background: #D4A853; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #F5D68A; }

/* ----- Scroll Progress Bar ----- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #D4A853, #F5D68A, #D4A853);
  z-index: 10000;
  transition: width 0.1s linear;
}

/* ----- Custom Cursor ----- */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: #D4A853;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  mix-blend-mode: difference;
  transition: width 0.2s, height 0.2s;
  transform: translate(-50%, -50%);
}

.cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212, 168, 83, 0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s, background 0.3s;
}

.cursor-follower.hover {
  width: 60px;
  height: 60px;
  border-color: #D4A853;
  background: rgba(212, 168, 83, 0.08);
}

/* ----- Back to Top ----- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9990;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #111111;
  border: 1px solid rgba(212, 168, 83, 0.2);
  color: #D4A853;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.32, 0.72, 0, 1);
  pointer-events: none;
  text-decoration: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: #D4A853;
  color: #0A0A0A;
  box-shadow: 0 4px 24px rgba(212, 168, 83, 0.3);
}

/* ----- Typography ----- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

.gold { color: #D4A853; }
.gold-text { color: #D4A853; }
.gold-icon { color: #D4A853; }

/* ----- Preloader ----- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0A0A0A;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.32,0.72,0,1), visibility 0.8s cubic-bezier(0.32,0.72,0,1);
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  margin-bottom: 2rem;
  animation: pulse-logo 1.5s cubic-bezier(0.32,0.72,0,1) infinite;
}

@keyframes pulse-logo {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.8; }
}

.preloader-bar {
  width: 120px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 1px;
  overflow: hidden;
}

.preloader-fill {
  width: 0;
  height: 100%;
  background: #D4A853;
  border-radius: 1px;
  animation: load-fill 1.8s cubic-bezier(0.32,0.72,0,1) forwards;
}

@keyframes load-fill {
  0% { width: 0; }
  100% { width: 100%; }
}

/* ----- Floating Island Nav ----- */
.floating-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: center;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.32,0.72,0,1);
}

.floating-nav.nav-hidden {
  transform: translateY(-120%);
}

.nav-island {
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: 9999px;
  padding: 0.6rem 1.5rem 0.6rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  pointer-events: auto;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #FFFFFF;
}

.nav-wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  color: #999999;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  transition: all 0.4s cubic-bezier(0.32,0.72,0,1);
  position: relative;
}

.nav-link:hover {
  color: #FFFFFF;
  background: rgba(212, 168, 83, 0.08);
}

.nav-link.active {
  color: #D4A853;
  background: rgba(212, 168, 83, 0.06);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 1px;
  transition: all 0.4s cubic-bezier(0.32,0.72,0,1);
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px,4px);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px,-4px);
}

/* ----- Mobile Menu ----- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(5,5,5,0.97);
  backdrop-filter: blur(40px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s cubic-bezier(0.32,0.72,0,1);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.mobile-link {
  color: #999999;
  text-decoration: none;
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  transition: color 0.4s cubic-bezier(0.32,0.72,0,1);
}

.mobile-link:hover {
  color: #D4A853;
}

/* ===== SECTION BASE ===== */
.section {
  padding: 8rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #D4A853;
  border: 1px solid rgba(212, 168, 83, 0.25);
  padding: 0.3rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.2rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.section-desc {
  color: #999999;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}

/* ===== BUTTONS (Button-in-Button) ===== */
.btn-primary, .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.75rem 0.75rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.5s cubic-bezier(0.32,0.72,0,1);
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}

.btn-text { flex: 1; position: relative; z-index: 1; }
.btn-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.5s cubic-bezier(0.32,0.72,0,1);
  position: relative;
  z-index: 1;
}

.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: scale(0);
  animation: btn-ripple 0.6s ease-out forwards;
  pointer-events: none;
}

@keyframes btn-ripple {
  to { transform: scale(4); opacity: 0; }
}

.btn-primary {
  background: #D4A853;
  color: #0A0A0A;
}

.btn-primary .btn-icon {
  background: rgba(0,0,0,0.15);
  color: #0A0A0A;
}

.btn-primary:hover {
  background: #F5D68A;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 168, 83, 0.25);
}

.btn-primary:hover .btn-icon {
  background: rgba(0,0,0,0.2);
  transform: rotate(45deg);
}

.btn-outline {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.15);
}

.btn-outline .btn-icon {
  background: rgba(255,255,255,0.08);
  color: #FFFFFF;
}

.btn-outline:hover {
  border-color: #D4A853;
  color: #D4A853;
  transform: translateY(-2px);
}

.btn-outline:hover .btn-icon {
  background: rgba(212, 168, 83, 0.15);
  color: #D4A853;
}

/* ===== THREE.JS CANVAS ===== */
#three-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.6;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem 1.5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(212,168,83,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(212,168,83,0.03) 0%, transparent 60%),
    linear-gradient(180deg, #0A0A0A 0%, #050505 100%);
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  opacity: 0.5;
}

.hero-parallax-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  will-change: transform;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #D4A853;
  border: 1px solid rgba(212, 168, 83, 0.2);
  padding: 0.4rem 1.2rem;
  border-radius: 9999px;
  margin-bottom: 2rem;
  background: rgba(212, 168, 83, 0.05);
}

.hero-title {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.1rem;
  color: #999999;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.scroll-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #666666;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.scroll-dot {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 16px;
  background: #D4A853;
  border-radius: 2px;
  animation: scroll-dot 2s cubic-bezier(0.32,0.72,0,1) infinite;
}

@keyframes scroll-dot {
  0% { top: -20%; }
  100% { top: 120%; }
}

/* ===== WORK / BENTO GRID ===== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.bento-card {
  text-decoration: none;
  display: block;
  cursor: none;
  perspective: 1000px;
}

.bento-bezel-outer {
  background: linear-gradient(135deg, rgba(212,168,83,0.12), rgba(212,168,83,0.03));
  border-radius: 16px;
  padding: 1.5px;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.32,0.72,0,1);
  will-change: transform;
}

.bento-card:hover .bento-bezel-outer {
  background: linear-gradient(135deg, rgba(212,168,83,0.25), rgba(212,168,83,0.08));
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(212,168,83,0.12);
}

.bento-bezel-inner {
  background: #111111;
  border-radius: 15px;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-medium { grid-column: span 2; }
.bento-small { grid-column: span 1; }

.bento-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 1;
}

.bento-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  position: absolute;
  inset: 0;
  opacity: 0.15;
  transition: opacity 0.6s cubic-bezier(0.32,0.72,0,1);
  z-index: 0;
}

.bento-card:hover .bento-preview {
  opacity: 0.25;
}

.bento-large .bento-preview { opacity: 0.2; }
.bento-large:hover .bento-preview { opacity: 0.3; }

.bento-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  align-self: flex-start;
  position: relative;
  z-index: 1;
}

.bento-tag.live {
  background: rgba(212, 168, 83, 0.15);
  color: #D4A853;
  border: 1px solid rgba(212, 168, 83, 0.3);
}

.bento-tag.soon {
  background: rgba(255,255,255,0.05);
  color: #666;
  border: 1px solid rgba(255,255,255,0.08);
}

.bento-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.bento-large .bento-title { font-size: 1.8rem; }

.bento-desc {
  color: #999999;
  font-size: 0.85rem;
  line-height: 1.6;
  flex: 1;
  position: relative;
  z-index: 1;
}

.bento-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.bento-badge {
  font-size: 0.7rem;
  color: #666666;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

.bento-link {
  margin-left: auto;
  color: #D4A853;
  font-size: 1.1rem;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-bezel-outer {
  background: linear-gradient(135deg, rgba(212,168,83,0.1), rgba(212,168,83,0.02));
  border-radius: 16px;
  padding: 1.5px;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.32,0.72,0,1);
  will-change: transform;
}

.service-card:hover .service-bezel-outer {
  background: linear-gradient(135deg, rgba(212,168,83,0.2), rgba(212,168,83,0.06));
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(212,168,83,0.1);
}

.service-bezel-inner {
  background: #111111;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 168, 83, 0.08);
  border: 1px solid rgba(212, 168, 83, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #D4A853;
  margin-bottom: 1.2rem;
  transition: all 0.5s cubic-bezier(0.32,0.72,0,1);
}

.service-card:hover .service-icon {
  background: rgba(212, 168, 83, 0.15);
  transform: scale(1.05) rotate(-5deg);
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.6rem;
}

.service-desc {
  color: #999999;
  font-size: 0.85rem;
  line-height: 1.7;
}

/* ===== PROCESS TIMELINE ===== */
.process-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(212,168,83,0.4), transparent);
}

.process-step {
  display: flex;
  gap: 2rem;
  padding-bottom: 3rem;
  position: relative;
}

.process-step:last-child { padding-bottom: 0; }

.step-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #111111;
  border: 1px solid rgba(212, 168, 83, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #D4A853;
  position: relative;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.32,0.72,0,1);
}

.process-step:hover .step-number {
  background: rgba(212, 168, 83, 0.1);
  border-color: #D4A853;
  box-shadow: 0 0 24px rgba(212,168,83,0.15);
}

.step-content {
  padding-top: 0.5rem;
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.4rem;
}

.step-desc {
  color: #999999;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  align-items: start;
}

.pricing-card {
  position: relative;
}

.pricing-featured {
  transform: scale(1.05);
  z-index: 2;
}

.pricing-featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #D4A853;
  color: #0A0A0A;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 9999px;
  z-index: 3;
}

.pricing-bezel-outer {
  background: linear-gradient(135deg, rgba(212,168,83,0.08), rgba(212,168,83,0.02));
  border-radius: 16px;
  padding: 1.5px;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.32,0.72,0,1);
  will-change: transform;
}

.pricing-card:hover .pricing-bezel-outer {
  background: linear-gradient(135deg, rgba(212,168,83,0.2), rgba(212,168,83,0.06));
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(212,168,83,0.1);
}

.pricing-featured .pricing-bezel-outer {
  background: linear-gradient(135deg, rgba(212,168,83,0.25), rgba(212,168,83,0.08));
}

.pricing-bezel-inner {
  background: #111111;
  border-radius: 15px;
  padding: 2.5rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-tier {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  display: block;
  margin-bottom: 0.8rem;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
  margin-bottom: 0.6rem;
}

.pricing-currency {
  font-size: 1.2rem;
  color: #D4A853;
  font-weight: 600;
}

.pricing-value {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: #D4A853;
  line-height: 1;
}

.pricing-desc {
  color: #999999;
  font-size: 0.8rem;
}

.pricing-features {
  list-style: none;
  flex: 1;
  margin-bottom: 1.5rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #CCCCCC;
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { font-size: 1rem; }

.pricing-btn {
  width: 100%;
  justify-content: center;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-paragraph {
  color: #999999;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-bezel-outer {
  background: linear-gradient(135deg, rgba(212,168,83,0.1), rgba(212,168,83,0.02));
  border-radius: 16px;
  padding: 1.5px;
}

.about-bezel-inner {
  background: #111111;
  border-radius: 15px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-wrap {
  background: #111111;
  border: 1px solid rgba(212, 168, 83, 0.08);
  border-radius: 16px;
  padding: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #CCCCCC;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #1A1A1A;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: all 0.4s cubic-bezier(0.32,0.72,0,1);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #D4A853;
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.08);
  background: #1E1E1E;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #555555;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: #1A1A1A;
  color: #FFFFFF;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group .form-error {
  font-size: 0.75rem;
  color: #FF4444;
  min-height: 1.2em;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #FF4444;
}

.form-submit {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.form-status {
  font-size: 0.85rem;
  padding: 0.5rem 0;
  min-height: 1.5em;
}

.form-status.success { color: #D4A853; }
.form-status.error { color: #FF4444; }

/* ----- Contact Info Cards ----- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  background: #111111;
  border: 1px solid rgba(212, 168, 83, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
}

.contact-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(212, 168, 83, 0.08);
  border: 1px solid rgba(212, 168, 83, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #D4A853;
  margin-bottom: 0.8rem;
}

.contact-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.3rem;
}

.contact-link {
  color: #D4A853;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.4s cubic-bezier(0.32,0.72,0,1);
}

.contact-link:hover { color: #F5D68A; }

.contact-text {
  color: #999999;
  font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  margin-bottom: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-link {
  color: #666666;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.4s cubic-bezier(0.32,0.72,0,1);
}

.footer-link:hover { color: #D4A853; }

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

.footer-copy {
  color: #555555;
  font-size: 0.8rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.32,0.72,0,1);
}

.social-link:hover {
  background: rgba(212, 168, 83, 0.1);
  border-color: #D4A853;
  color: #D4A853;
  transform: translateY(-2px);
}

/* ===== REVEAL ANIMATION ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(4px);
  transition: opacity 0.8s cubic-bezier(0.32,0.72,0,1),
              transform 0.8s cubic-bezier(0.32,0.72,0,1),
              filter 0.8s cubic-bezier(0.32,0.72,0,1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

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

/* Tablet */
@media (max-width: 968px) {
  .section { padding: 5rem 1.2rem; }
  .section-title { font-size: 2.2rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-large { grid-column: span 2; grid-row: span 1; }
  .bento-medium { grid-column: span 2; }
  .bento-small { grid-column: span 1; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-featured { transform: none; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

/* Mobile */
@media (max-width: 600px) {
  .section { padding: 4rem 1rem; }
  .section-title { font-size: 1.8rem; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-large { grid-column: 1; }
  .bento-medium { grid-column: 1; }
  .bento-small { grid-column: 1; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(2rem, 12vw, 2.8rem); }
  .hero-actions { flex-direction: column; align-items: center; }
  .about-stats { flex-direction: column; gap: 1.5rem; }
  .cursor-dot, .cursor-follower { display: none; }
  body { cursor: auto; }
  a, button, input, select, textarea, .bento-card, .service-card, .pricing-card, .social-link {
    cursor: auto;
  }
}
