/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   DROPSITE — Luxury Gold & Black Theme
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,900;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* VARIABLES */
:root {
  --bg:        #1A1814;
  --surface:   #222018;
  --surface-2: #29261C;
  --surface-3: #312E22;

  --border:    rgba(201, 168, 76, 0.13);
  --border-md: rgba(201, 168, 76, 0.26);
  --border-lg: rgba(201, 168, 76, 0.44);

  --text:      #F5EFE4;
  --text-2:    #9A8E7C;
  --text-3:    #5A5244;

  --gold:       #C9A84C;
  --gold-2:     #E8D08A;
  --gold-3:     #9A7A2A;
  --gold-lt:    rgba(201, 168, 76, 0.10);
  --gold-glow:  rgba(201, 168, 76, 0.32);
  --gold-shine: rgba(232, 208, 138, 0.18);

  --gradient: linear-gradient(135deg, #9A7A2A 0%, #C9A84C 35%, #E8D08A 65%, #C9A84C 100%);
  --gradient-h: linear-gradient(90deg, #9A7A2A 0%, #C9A84C 40%, #E8D08A 70%, #C9A84C 100%);

  --nav-h:    80px;
  --radius:   10px;
  --radius-lg: 12px;
  --max-w:    1200px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
button { font-family: inherit; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }

/* ANIMATED BACKGROUND ORBS */
.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
}
.bg-orb-1 {
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,0.28) 0%, transparent 70%);
  top: -250px; left: -200px;
  animation: orb-drift-1 14s ease-in-out infinite;
}
.bg-orb-2 {
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(201,168,76,0.22) 0%, transparent 70%);
  bottom: 0; right: -150px;
  animation: orb-drift-2 18s ease-in-out infinite;
}
.bg-orb-3 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,208,138,0.18) 0%, transparent 70%);
  top: 40%; left: 55%;
  animation: orb-drift-3 11s ease-in-out infinite;
}
.bg-orb-4 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(201,168,76,0.16) 0%, transparent 70%);
  top: 60%; left: 15%;
  animation: orb-drift-4 20s ease-in-out infinite;
}
@keyframes orb-drift-1 {
  0%,100% { transform: translate(0, 0) scale(1); }
  25%     { transform: translate(200px, 180px) scale(1.08); }
  50%     { transform: translate(80px, 350px) scale(0.95); }
  75%     { transform: translate(-100px, 200px) scale(1.04); }
}
@keyframes orb-drift-2 {
  0%,100% { transform: translate(0, 0) scale(1); }
  25%     { transform: translate(-200px, -150px) scale(1.06); }
  50%     { transform: translate(-100px, -300px) scale(0.94); }
  75%     { transform: translate(-280px, -180px) scale(1.05); }
}
@keyframes orb-drift-3 {
  0%,100% { transform: translate(0, 0) scale(1); }
  33%     { transform: translate(-250px, -120px) scale(1.1); }
  66%     { transform: translate(150px, 200px) scale(0.92); }
}
@keyframes orb-drift-4 {
  0%,100% { transform: translate(0, 0) scale(1); }
  30%     { transform: translate(220px, -200px) scale(1.08); }
  60%     { transform: translate(-150px, -120px) scale(0.96); }
  80%     { transform: translate(100px, 100px) scale(1.04); }
}

/* CUSTOM CURSOR */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s, width 0.2s, height 0.2s;
  will-change: transform;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 38px; height: 38px;
  border: 1px solid rgba(201, 168, 76, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: width 0.35s cubic-bezier(0.16,1,0.3,1), height 0.35s cubic-bezier(0.16,1,0.3,1), border-color 0.35s, opacity 0.3s;
  will-change: transform;
}
.cursor-ring.hovered {
  width: 58px; height: 58px;
  border-color: rgba(201,168,76,0.8);
}
body:not(.has-cursor) .cursor,
body:not(.has-cursor) .cursor-ring { display: none; }

/* BASE */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
}
@media (pointer: coarse) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none !important; }
}

/* TYPOGRAPHY */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 100%;
  animation: shimmer 4s ease infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

/* CONTAINER */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* SECTIONS */
.section     { padding: 130px 0; }
.section--sm { padding: 80px 0; }
.section--lg { padding: 180px 0; }

/* SECTION LABEL */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gradient-h);
}

.section-header { margin-bottom: 72px; }
.section-header .section-sub { margin-top: 20px; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.08;
}
/* Signature gold underbar — matches the Dropsite app header style */
.section-title::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--gradient-h);
  margin-top: 14px;
  border-radius: 2px;
}
.section-sub {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-2);
  max-width: 500px;
  line-height: 1.85;
  letter-spacing: 0.01em;
}

/* GOLD LINE DIVIDER */
.gold-rule {
  width: 48px;
  height: 1px;
  background: var(--gradient-h);
  margin: 32px 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BUTTONS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  cursor: none;
  transition: all 0.3s ease;
  border: none;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient);
  background-size: 200% 100%;
  color: #0A0805;
  box-shadow: 0 4px 24px var(--gold-glow);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.3s;
}
.btn-primary:hover {
  background-position: 100% 0;
  box-shadow: 0 8px 40px var(--gold-glow), 0 0 0 1px var(--gold);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border-md);
  letter-spacing: 0.14em;
}
.btn-ghost:hover {
  color: var(--gold-2);
  border-color: var(--gold);
  background: var(--gold-lt);
  box-shadow: 0 0 20px var(--gold-lt);
}

.btn-lg { padding: 18px 40px; font-size: 11px; }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: color 0.25s, gap 0.25s;
  white-space: nowrap;
}
.arrow-link:hover { color: var(--gold); gap: 14px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAVIGATION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.5s, border-color 0.5s;
}
.nav.scrolled {
  background: rgba(7, 7, 10, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 32px; height: 32px;
  flex-shrink: 0;
}
.logo-wordmark {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.logo-wordmark span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.nav-links a {
  padding: 8px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 18px; right: 18px;
  height: 1px;
  background: var(--gradient-h);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-2); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  padding: 11px 22px;
  font-size: 10px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: none;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text-2);
  transition: all 0.35s ease;
  transform-origin: center;
}
.nav-toggle span:nth-child(2) { width: 16px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 24px; background: var(--gold); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--gold); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 998;
  background: var(--bg);
  padding: 110px 40px 40px;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-16px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  border-bottom: 1px solid var(--border);
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--text-3);
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.25s;
  letter-spacing: 0.01em;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.mobile-nav a:hover,
.mobile-nav a:active { color: var(--gold-2); }
.mobile-nav .btn {
  margin-top: 32px;
  width: 100%;
  justify-content: center;
  cursor: pointer;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--nav-h) 0 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Subtle gold radial glow */
.hero-glow {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: glowPulse 8s ease-in-out infinite;
}
.hero-glow-2 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
  bottom: 0; left: -100px;
  animation: glowPulse 11s ease-in-out infinite reverse;
}
@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.15); opacity: 0.7; }
}

/* Fine diagonal grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 60% 30%, black 30%, transparent 100%);
}

/* Diagonal gold lines accent */
.hero-lines {
  position: absolute;
  top: 0; right: 0;
  width: 500px; height: 100%;
  overflow: hidden;
  opacity: 0.08;
}
.hero-lines::before,
.hero-lines::after {
  content: '';
  position: absolute;
  top: -100%;
  width: 1px;
  height: 300%;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  animation: lineDrift 10s linear infinite;
}
.hero-lines::before { right: 120px; animation-delay: -3s; }
.hero-lines::after  { right: 60px; animation-delay: -7s; }
@keyframes lineDrift {
  from { transform: translateY(-30%) rotate(15deg); }
  to   { transform: translateY(30%) rotate(15deg); }
}

.hero-content { position: relative; z-index: 1; max-width: 900px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px 7px 12px;
  background: var(--gold-lt);
  border: 1px solid var(--border-md);
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  color: var(--gold-2);
  margin-bottom: 40px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-badge-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  animation: badgePulse 2.5s ease infinite;
  flex-shrink: 0;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.6); }
  50%       { box-shadow: 0 0 0 5px rgba(201,168,76,0); }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(64px, 10vw, 130px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}
.hero h1::after { display: none; }
.hero h1 em {
  font-style: italic;
  color: var(--gold-2);
}

.hero-sub {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-2);
  max-width: 460px;
  line-height: 1.9;
  margin-bottom: 56px;
  letter-spacing: 0.02em;
}

.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 48px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 1;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.hero-scroll:hover { opacity: 1; }
.hero-scroll span {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-2);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MARQUEE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.marquee-wrap {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.marquee-wrap::before, .marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 180px;
  z-index: 1;
  pointer-events: none;
}
.marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.marquee-wrap::after  { right: 0; background: linear-gradient(to left, var(--bg), transparent); }

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.marquee-dot {
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.6;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FEATURE GRID
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: transparent;
  border: none;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  transition: background 0.35s, border-color 0.35s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-h);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.feature-card:hover {
  background: var(--surface-2);
  border-color: var(--border-md);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 52px; height: 52px;
  background: var(--gold-lt);
  border: 1px solid var(--border-md);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  flex-shrink: 0;
}
.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 14px;
  line-height: 1.2;
}
.feature-card p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.85;
  letter-spacing: 0.01em;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PORTFOLIO CARDS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.portfolio-card {
  background: #0e0d0b;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
  text-decoration: none;
  color: inherit;
  cursor: none;
  position: relative;
  display: block;
  aspect-ratio: 4/3;
}
.portfolio-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201,168,76,0.6);
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 10;
}
.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 40px var(--gold-lt);
}
.portfolio-card:hover::after { opacity: 1; }

.portfolio-card-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.portfolio-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.portfolio-card:hover .portfolio-card-image img { transform: scale(1.06); }

.card-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-img-placeholder .card-site-frame {
  width: 88%; height: 82%;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(201,168,76,0.1);
  position: relative;
  overflow: hidden;
}
.card-site-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 22px;
  background: rgba(201,168,76,0.04);
}
.card-site-dots {
  position: absolute;
  top: 6px; left: 10px;
  display: flex; gap: 5px;
}
.card-site-dots span {
  width: 7px; height: 7px;
  border-radius: 50%;
  opacity: 0.3;
}

.portfolio-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 72px 32px 32px;
  background: linear-gradient(to top, rgba(10,9,7,0.98) 0%, rgba(10,9,7,0.93) 55%, transparent 100%);
  transform: translateY(102%);
  transition: transform 0.55s cubic-bezier(0.16,1,0.3,1);
  z-index: 5;
  display: flex;
  flex-direction: column;
}
.portfolio-card:hover .portfolio-card-body {
  transform: translateY(0);
}
.portfolio-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.portfolio-card-cat {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.portfolio-card-year {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--text-3);
  font-weight: 500;
}
.portfolio-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.1;
}
.portfolio-card-desc {
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.portfolio-card-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 18px;
}
.tech-tag {
  padding: 3px 9px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.portfolio-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-2);
  transition: gap 0.25s, color 0.25s;
}
.portfolio-card-link:hover { gap: 14px; color: var(--gold); }

/* Full portfolio grid (3-col on portfolio page) */
.portfolio-grid-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LIVE PREVIEW CARDS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.card-screenshot {
  position: absolute;
  inset: 0;
  background: #0e0d0b;
  overflow: hidden;
}

.card-preview-chrome {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 34px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  z-index: 10;
  flex-shrink: 0;
}

.card-preview-dots {
  display: flex; gap: 5px; flex-shrink: 0;
}
.card-preview-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(201,168,76,0.2);
}
.card-preview-dots span:first-child { background: rgba(201,168,76,0.55); }

.card-preview-url {
  flex: 1;
  background: rgba(201,168,76,0.05);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 3px 9px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: var(--text-3);
  letter-spacing: 0.02em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-screenshot-img {
  position: absolute;
  top: 34px; left: 0; right: 0; bottom: 0;
  overflow: hidden;
}
.card-screenshot-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.portfolio-card:hover .card-screenshot-img img {
  transform: scale(1.04);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   WORK STATEMENT
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.work-statement-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.work-name-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.work-name-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.25s;
  cursor: default;
}
.work-name-item:first-child { border-top: 1px solid var(--border); }

.work-name-item:not(.work-name-item--dim):hover .work-name-title {
  color: var(--gold-2);
  transform: translateX(6px);
}

.work-name-item--dim { opacity: 0.3; }

.work-name-num {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--gold);
  min-width: 28px;
  flex-shrink: 0;
}

.work-name-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--text);
  flex: 1;
  transition: color 0.25s, transform 0.25s;
}

.work-name-tag {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PROCESS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.process-track {
  display: grid;
  grid-template-columns: 1fr 52px 1fr 52px 1fr 52px 1fr;
  align-items: start;
}
.process-arrow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 79px;
  color: var(--gold);
  opacity: 0.35;
}
.process-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 32px 52px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s, border-color 0.35s, transform 0.3s, box-shadow 0.3s;
}
.process-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-h);
  opacity: 0.5;
  transition: opacity 0.35s;
}
.process-card:hover {
  background: var(--surface-2);
  border-color: var(--border-md);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.1);
}
.process-card:hover::before { opacity: 1; }
.process-card-bg-num {
  position: absolute;
  bottom: -20px; right: -10px;
  font-family: 'Playfair Display', serif;
  font-size: 140px;
  font-weight: 700;
  line-height: 1;
  color: rgba(201,168,76,0.045);
  pointer-events: none;
  user-select: none;
  transition: color 0.35s;
}
.process-card:hover .process-card-bg-num { color: rgba(201,168,76,0.09); }
@keyframes orbitDot {
  from { transform: rotate(0deg) translateY(-34px); }
  to   { transform: rotate(360deg) translateY(-34px); }
}
.process-step-badge {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: border-color 0.35s, box-shadow 0.35s;
}
.process-step-badge::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -4px 0 0 -4px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(201,168,76,0.9), 0 0 20px rgba(201,168,76,0.4);
  transform-origin: 4px 4px;
  animation: orbitDot 5s linear infinite;
  z-index: 2;
}
.process-step-badge span {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.02em;
}
.process-card:hover .process-step-badge {
  border-color: rgba(201,168,76,0.65);
  box-shadow: 0 0 22px rgba(201,168,76,0.13);
}
.process-card:hover .process-step-badge::before {
  animation-play-state: paused;
}
.process-track > .process-card:nth-child(1) .process-step-badge::before { animation-delay: 0s; }
.process-track > .process-card:nth-child(3) .process-step-badge::before { animation-delay: -1.25s; }
.process-track > .process-card:nth-child(5) .process-step-badge::before { animation-delay: -2.5s; }
.process-track > .process-card:nth-child(7) .process-step-badge::before { animation-delay: -3.75s; }
.process-step-icon {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
  color: rgba(201,168,76,0.55);
  position: relative;
  z-index: 1;
  transition: color 0.35s;
}
.process-card:hover .process-step-icon { color: var(--gold); }
.process-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--text);
}
.process-card p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.9;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   WHY DROPSITE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  background: transparent;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-h);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.why-card:hover {
  background: var(--surface-2);
  border-color: var(--border-md);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.why-card:hover::before { transform: scaleX(1); }
.why-card-icon { font-size: 24px; margin-bottom: 18px; }
.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
}
.why-card p { font-size: 13px; color: var(--text-2); line-height: 1.8; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MARQUEE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.marquee-section {
  padding: 52px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, transparent 0%, rgba(201,168,76,0.025) 50%, transparent 100%);
}
.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-section::before { left: 0;  background: linear-gradient(to right, var(--bg), transparent); }
.marquee-section::after  { right: 0; background: linear-gradient(to left,  var(--bg), transparent); }

.marquee-row { overflow: hidden; }
.marquee-row + .marquee-row { margin-top: 18px; }

.marquee-inner {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: mq-left 32s linear infinite;
  will-change: transform;
}
.marquee-inner--rev { animation: mq-right 24s linear infinite; }

@keyframes mq-left  { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes mq-right { from { transform: translateX(-50%); } to { transform: translateX(0); }    }
@media (prefers-reduced-motion: reduce) {
  .marquee-inner, .marquee-inner--rev { animation: none; }
}

.marquee-inner span {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--gold);
  padding: 0 24px;
  letter-spacing: 0.01em;
}
.marquee-inner em {
  font-style: normal;
  color: var(--text-3);
  font-size: 12px;
  flex-shrink: 0;
}
.marquee-row--sm .marquee-inner span {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 0 18px;
}
.marquee-row--sm .marquee-inner em {
  font-size: 8px;
  color: var(--border-md);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TESTIMONIALS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: transparent;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  background: var(--surface-2);
  border-color: var(--border-md);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 4px;
}
.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: var(--text-2);
  line-height: 1.75;
  flex: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--border-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  letter-spacing: 0.04em;
}
.testimonial-name {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.4;
}
.testimonial-role {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Why section — subtle warm mid-tone */
.why-section {
  background: linear-gradient(180deg, var(--bg) 0%, #1A1710 50%, var(--bg) 100%);
}

/* Warm amber section for testimonials */
.testimonials-section {
  background: linear-gradient(180deg, #1C1A0F 0%, #18160E 100%);
  border-top: 1px solid rgba(201,168,76,0.14);
  border-bottom: 1px solid rgba(201,168,76,0.14);
  position: relative;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.06), transparent);
  pointer-events: none;
}

/* Work statement responsive */
@media (max-width: 768px) {
  .work-statement-inner { grid-template-columns: 1fr; gap: 48px; }
  .work-name-title { font-size: 22px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CTA BAND
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.cta-band {
  background: linear-gradient(160deg, #1C1A10 0%, #161410 40%, #1A1710 100%);
  border-top: 1px solid var(--border-md);
  border-bottom: 1px solid var(--border-md);
  padding: 160px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.10), transparent 70%),
    radial-gradient(ellipse 30% 40% at 20% 80%, rgba(201,168,76,0.05), transparent),
    radial-gradient(ellipse 30% 40% at 80% 20%, rgba(201,168,76,0.05), transparent);
  pointer-events: none;
}
/* Corner ornaments */
.cta-band::before,
.cta-band::after {
  content: '';
  position: absolute;
  width: 80px; height: 80px;
  border-color: var(--border-md);
  border-style: solid;
}
.cta-band::before {
  top: 40px; left: 40px;
  border-width: 1px 0 0 1px;
}
.cta-band::after {
  bottom: 40px; right: 40px;
  border-width: 0 1px 1px 0;
}

.cta-band-content { position: relative; z-index: 1; }
.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.05;
}
.cta-band p {
  font-size: 14px;
  color: var(--text-2);
  max-width: 400px;
  margin: 0 auto 52px;
  line-height: 1.85;
  letter-spacing: 0.02em;
}
.cta-band-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 56px;
  margin-bottom: 56px;
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.85;
  max-width: 240px;
  letter-spacing: 0.02em;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 13px;
  color: var(--text-2);
  transition: color 0.25s;
  letter-spacing: 0.01em;
}
.footer-col a:hover { color: var(--gold-2); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.06em;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PAGE HERO (inner pages)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.page-hero {
  padding: calc(var(--nav-h) + 100px) 0 100px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 55% at 50% 0%, rgba(201,168,76,0.04), transparent);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.05;
}
.page-hero p {
  font-size: 15px;
  color: var(--text-2);
  max-width: 520px;
  line-height: 1.85;
  letter-spacing: 0.02em;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVICES PAGE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 90px 0;
  border-bottom: 1px solid var(--border);
}
.service-item:last-child { border-bottom: none; }
.service-item.flip .service-visual { order: -1; }

.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 100px;
  font-weight: 300;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.12;
  line-height: 1;
  margin-bottom: 8px;
  background-size: 200% 100%;
}
.service-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.1;
}
.service-info p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.85;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

.service-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.service-includes li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-2);
  letter-spacing: 0.01em;
}
.service-includes li::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.service-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  position: relative;
  overflow: hidden;
}
.service-visual-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.05), transparent 70%);
  pointer-events: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FAQ
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRICING
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s;
}
.pricing-card:hover {
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  transform: translateY(-4px);
}
.pricing-card-label {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 20px;
}
.pricing-card-price {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-3);
  font-weight: 400;
  margin-bottom: 24px;
}
.pricing-card-price span {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 500;
  color: var(--text-1);
  line-height: 1;
  display: block;
  margin-top: 4px;
}
.pricing-card-divider {
  width: 40px;
  height: 1px;
  background: rgba(201,168,76,0.4);
  margin-bottom: 28px;
}
.pricing-card-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  flex: 1;
}
.pricing-card-includes li {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}
.pricing-card-includes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(201,168,76,0.5);
  font-size: 11px;
}

.faq-list { max-width: 800px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  cursor: none;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  gap: 24px;
  transition: color 0.25s;
  user-select: none;
}
.faq-question:hover { color: var(--gold-2); }
.faq-icon {
  width: 30px; height: 30px;
  border: 1px solid var(--border-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.35s;
  color: var(--text-2);
  font-weight: 300;
}
.faq-item.open .faq-icon {
  background: var(--gold-lt);
  border-color: var(--border-md);
  color: var(--gold);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.85;
  padding-bottom: 28px;
  max-width: 640px;
  letter-spacing: 0.01em;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ABOUT PAGE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.team-card {
  background: var(--surface);
  padding: 52px;
  transition: background 0.3s;
}
.team-card:hover { background: var(--surface-2); }
.team-avatar {
  width: 72px; height: 72px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 28px;
  flex-shrink: 0;
  box-shadow: 0 0 24px rgba(201,168,76,0.08);
}
.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 8px;
}
.team-role {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.team-bio {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.85;
  letter-spacing: 0.01em;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.value-card {
  background: var(--surface);
  padding: 36px;
  transition: background 0.3s;
}
.value-card:hover { background: var(--surface-2); }
.value-icon { display:flex; align-items:center; margin-bottom:16px; color:rgba(201,168,76,0.7); }
.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
}
.value-card p { font-size: 13px; color: var(--text-2); line-height: 1.8; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACT PAGE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.1;
}
.contact-info p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.85;
  margin-bottom: 44px;
  letter-spacing: 0.01em;
}
.contact-links { display: flex; flex-direction: column; gap: 10px; }

.contact-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.25s, background 0.25s;
}
.contact-link:hover { border-color: var(--border-md); background: var(--surface-2); }
.contact-link-icon {
  width: 40px; height: 40px;
  background: var(--gold-lt);
  border: 1px solid var(--border-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-link-text {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  color: var(--text-3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.contact-link-val {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Form */
.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 52px;
}
.contact-form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 8px;
}
.contact-form-card > p {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 36px;
  letter-spacing: 0.01em;
  line-height: 1.7;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border-md);
  padding: 13px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text);
  width: 100%;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  border-radius: 0;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold-lt);
}
.form-group select { cursor: none; appearance: none; -webkit-appearance: none; }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-submit { width: 100%; justify-content: center; }
.form-note {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: var(--text-3);
  text-align: center;
  margin-top: 14px;
  letter-spacing: 0.06em;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PORTFOLIO FILTERS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.portfolio-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 9px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--border-md);
  background: transparent;
  color: var(--text-2);
  cursor: none;
  transition: all 0.25s;
  border-radius: 0;
}
.filter-btn:hover { background: var(--gold-lt); color: var(--gold-2); border-color: var(--border-md); }
.filter-btn.active {
  background: var(--gold-lt);
  border-color: var(--gold);
  color: var(--gold-2);
}

.portfolio-item { transition: opacity 0.3s, transform 0.3s; }
.portfolio-item.hidden { opacity: 0; transform: scale(0.97); pointer-events: none; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SCROLL REVEAL
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   DIVIDER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.divider { height: 1px; background: var(--border); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PAGE LOADER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  pointer-events: none;
}
.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.loader-logo {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-3);
}
.loader-logo span { color: var(--gold); }
.loader-bar {
  width: 120px;
  height: 1px;
  background: var(--border-md);
  position: relative;
  overflow: hidden;
}
.loader-bar::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gradient-h);
  animation: loaderFill 0.8s ease forwards;
}
@keyframes loaderFill {
  from { left: -100%; }
  to   { left: 0%; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .nav-inner  { padding: 0 32px; }
  .features-grid { grid-template-columns: 1fr; }
  .process-layout { grid-template-columns: 1fr; }
  .process-visual { display: none; }
  .process-track { grid-template-columns: 1fr 1fr; gap: 16px; }
  .process-arrow { display: none; }
  .service-item { grid-template-columns: 1fr; gap: 48px; }
  .service-item.flip .service-visual { order: 0; }
}
@media (max-width: 640px) {
  .process-track { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-grid-full { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 56px; }
  .why-layout { grid-template-columns: 1fr; gap: 48px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 24px; }
  .cta-band::before, .cta-band::after { display: none; }
}

@media (max-width: 640px) {
  :root { --nav-h: 68px; }
  .section { padding: 90px 0; }
  .section--lg { padding: 110px 0; }
  .container { padding: 0 24px; }
  .nav-inner  { padding: 0 24px; }

  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-toggle { display: flex; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
  .mobile-nav { display: flex; }

  .hero h1 { font-size: clamp(52px, 14vw, 72px); }
  .hero-scroll { display: none; }

  .portfolio-grid-full { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px; }

  .cta-band { padding: 90px 0; }
  .cta-band-actions { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .team-card { padding: 32px; }
  .mobile-nav { padding: 100px 24px 40px; }
}
