/* ============================================================
   LEAVAROTATORY — Premium Web Design Agency
   Design System: Soft-Skill / Editorial Luxury
   ============================================================ */

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

:root {
  /* Palette — Deep Slate + Antique Gold */
  --ink:        #0d0e12;
  --ink-2:      #1a1c24;
  --ink-3:      #252835;
  --surface:    #f5f3ee;
  --surface-2:  #ece9e1;
  --gold:       #c9a96e;
  --gold-light: #e8d5b0;
  --text:       #f5f3ee;
  --text-muted: #8a8d9a;
  --text-dim:   #555869;
  --white:      #ffffff;

  /* Typography */
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Syne', system-ui, sans-serif;
  --body:   'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --gap:    clamp(1.5rem, 4vw, 3rem);
  --section-py: clamp(5rem, 10vw, 9rem);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}

/* --- NOISE OVERLAY --- */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.028;
  background-size: 200px 200px;
}

/* --- CUSTOM CURSOR --- */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1000;
  transform: translate(-50%, -50%);
  transition: transform 0.1s var(--ease-out), opacity 0.2s;
}

.cursor-follower {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(201,169,110,0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999;
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease-out), width 0.3s var(--ease-out), height 0.3s var(--ease-out), opacity 0.2s;
}

body:hover .cursor { opacity: 1; }

/* Cursor expand on interactive elements */
a:hover ~ .cursor-follower,
button:hover ~ .cursor-follower { width: 60px; height: 60px; }

/* --- TYPOGRAPHY --- */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

em { font-style: italic; color: var(--gold); }

a { color: inherit; text-decoration: none; }

/* --- NAV --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem clamp(1.5rem, 5vw, 4rem);
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s;
}

.nav.scrolled {
  background: rgba(13,14,18,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 32px; height: 32px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  border-radius: 4px;
  flex-shrink: 0;
}

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

.nav-link {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}

.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }

.nav-link--cta {
  color: var(--ink);
  background: var(--gold);
  padding: 0.55rem 1.2rem;
  border-radius: 3px;
  transition: background 0.25s, transform 0.2s var(--ease-out);
}

.nav-link--cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav-link--cta::after { display: none; }

.nav-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
}

.nav-menu-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--text);
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-link {
  font-family: var(--serif);
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-style: italic;
  color: var(--text-muted);
  transition: color 0.25s;
}

.mobile-link:hover { color: var(--gold); }

/* --- HERO --- */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 clamp(1.5rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  right: -2%;
  transform: translateY(-58%);
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(18vw, 24vw, 28vw);
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,169,110,0.07);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.04em;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding-top: 12rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-headline {
  font-size: clamp(3.2rem, 7.5vw, 7rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 2.5rem;
}

.headline-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold-light);
}

.hero-sub-row {
  display: flex;
  align-items: flex-start;
  gap: clamp(2rem, 5vw, 5rem);
  flex-wrap: wrap;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 380px;
}

.br-desk { display: block; }

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: gap 0.3s var(--ease-out), color 0.25s;
}

.hero-cta:hover { gap: 1.1rem; color: var(--gold-light); }

.hero-scroll-hint {
  position: absolute;
  right: clamp(1.5rem, 4vw, 3.5rem);
  bottom: clamp(3rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* Hero stats strip */
.hero-stat-strip {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(201,169,110,0.15);
  flex-wrap: wrap;
}

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

.stat-num {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(201,169,110,0.2);
  flex-shrink: 0;
}

/* --- MARQUEE --- */
.marquee-strip {
  overflow: hidden;
  border-top: 1px solid rgba(201,169,110,0.12);
  border-bottom: 1px solid rgba(201,169,110,0.12);
  padding: 1.1rem 0;
  background: var(--ink-2);
}

.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.marquee-dot { color: var(--gold); }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --- SECTION COMMON --- */
section { padding: var(--section-py) clamp(1.5rem, 5vw, 4rem); }

.section-header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-tag::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  color: var(--text);
  max-width: 640px;
}

/* --- WORK --- */
.work { background: var(--ink); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.2rem, 2vw, 1.8rem);
}

.work-card {
  position: relative;
  border: 1px solid rgba(201,169,110,0.1);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.4s var(--ease-out);
  background: var(--ink-2);
}

.work-card:hover { border-color: rgba(201,169,110,0.35); transform: translateY(-4px); }

.work-card--featured { grid-column: span 2; }

.work-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/7;
}

.work-card--featured .work-card-image { aspect-ratio: 21/8; }

.work-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(
    135deg,
    hsl(var(--hue), 30%, 14%) 0%,
    hsl(var(--hue), 22%, 22%) 40%,
    hsl(var(--hue), 18%, 28%) 100%
  );
  transition: transform 0.7s var(--ease-out);
}

.work-card:hover .work-img-placeholder { transform: scale(1.04); }

/* Inner double-bezel detail */
.work-img-placeholder::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 3px;
}

.work-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,14,18,0.5);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
}

.work-card:hover .work-card-overlay { opacity: 1; }

.work-visit {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.6rem 1.2rem;
  border-radius: 3px;
  transform: translateY(6px);
  transition: transform 0.35s var(--ease-out);
}

.work-card:hover .work-visit { transform: translateY(0); }

.work-card-info {
  padding: 1.4rem 1.6rem 1.8rem;
}

.work-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.work-type {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.work-year {
  font-family: var(--sans);
  font-size: 0.7rem;
  color: var(--text-dim);
}

.work-card-title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--text);
  margin-bottom: 0.5rem;
}

.work-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.work-footer {
  margin-top: 3rem;
  text-align: right;
}

.text-link {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.25s;
}

.text-link:hover { border-color: var(--gold); }

/* --- SERVICES --- */
.services {
  background: var(--ink-2);
}

.services-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.services-left {
  position: sticky;
  top: 7rem;
}

.services-lead {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
  margin-top: 1.2rem;
  max-width: 340px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
  padding: 0.85rem 1.6rem;
  border-radius: 3px;
  border: none;
  cursor: none;
  transition: background 0.25s, transform 0.25s var(--ease-out), gap 0.25s var(--ease-out);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  gap: 1rem;
}

.service-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(201,169,110,0.1);
  transition: border-color 0.3s;
}

.service-item:hover { border-color: rgba(201,169,110,0.35); }

.service-num {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  padding-top: 0.25rem;
}

.service-name {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.service-tags span {
  font-family: var(--sans);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid rgba(201,169,110,0.18);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}

/* --- PROCESS --- */
.process { background: var(--ink); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(2rem, 4vw, 4rem);
}

.process-step {
  position: relative;
}

.process-step-inner {
  background: var(--ink-2);
  border: 1px solid rgba(201,169,110,0.1);
  border-radius: 6px;
  padding: 2rem 1.6rem 2.2rem;
  height: 100%;
  transition: border-color 0.3s, transform 0.4s var(--ease-out);
  /* Double-bezel outer */
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}

.process-step-inner:hover {
  border-color: rgba(201,169,110,0.35);
  transform: translateY(-4px);
}

/* Double-bezel inner */
.process-step-inner::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(201,169,110,0.05);
  border-radius: 4px;
  pointer-events: none;
}

.step-num {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.step-icon-ring {
  width: 52px; height: 52px;
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  color: var(--gold);
  transition: background 0.3s, border-color 0.3s;
}

.process-step-inner:hover .step-icon-ring {
  background: rgba(201,169,110,0.08);
  border-color: rgba(201,169,110,0.5);
}

.step-title {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 0.7rem;
}

.step-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- TESTIMONIALS --- */
.testimonials { background: var(--ink-2); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(2rem, 4vw, 4rem);
}

.testi-card {
  background: var(--ink);
  border: 1px solid rgba(201,169,110,0.1);
  border-radius: 6px;
  padding: 2rem 1.8rem;
  transition: border-color 0.3s, transform 0.4s var(--ease-out);
}

.testi-card:hover { border-color: rgba(201,169,110,0.3); transform: translateY(-3px); }

.testi-stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.testi-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.testi-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--c, var(--gold));
  display: grid;
  place-items: center;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink);
  flex-shrink: 0;
  opacity: 0.85;
}

.testi-name {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.15rem;
}

.testi-role {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* --- CTA BAND --- */
.cta-band {
  background: var(--gold);
  padding: clamp(4rem, 7vw, 7rem) clamp(1.5rem, 5vw, 4rem);
}

.cta-band-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.cta-eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(13,14,18,0.55);
}

.cta-headline {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.1;
}

.cta-headline em { color: var(--ink); -webkit-text-stroke: 1.5px var(--ink); }

.btn-primary--light {
  background: var(--ink);
  color: var(--gold);
}

.btn-primary--light:hover { background: var(--ink-2); }

/* --- CONTACT --- */
.contact { background: var(--ink); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact-details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.25s;
}

.contact-detail-item svg { color: var(--gold); flex-shrink: 0; }
.contact-detail-item:hover { color: var(--text); }

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

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

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

.form-group label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--ink-2);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 4px;
  padding: 0.8rem 1rem;
  font-family: var(--body);
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.25s, background 0.25s;
  outline: none;
  appearance: none;
  cursor: none;
}

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201,169,110,0.55);
  background: var(--ink-3);
}

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

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
  padding: 1rem 2rem;
  border-radius: 3px;
  border: none;
  cursor: none;
  width: 100%;
  transition: background 0.25s, transform 0.25s var(--ease-out), gap 0.25s;
}

.btn-submit:hover { background: var(--gold-light); transform: translateY(-2px); gap: 1rem; }

/* --- FOOTER --- */
.footer {
  background: var(--ink-2);
  border-top: 1px solid rgba(201,169,110,0.12);
  padding: 3rem clamp(1.5rem, 5vw, 4rem) 2rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(201,169,110,0.1);
  margin-bottom: 1.5rem;
}

.footer-logo { display: flex; align-items: center; gap: 0.6rem; font-family: var(--sans); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.04em; text-transform: uppercase; }

.footer-nav { display: flex; gap: 2rem; }

.footer-nav a {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.25s;
}

.footer-nav a:hover { color: var(--gold); }

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

.social-link {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 50%;
  color: var(--text-dim);
  transition: color 0.25s, border-color 0.25s, transform 0.25s var(--ease-out);
}

.social-link:hover { color: var(--gold); border-color: rgba(201,169,110,0.4); transform: translateY(-2px); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-dim);
}

.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: var(--text-dim); transition: color 0.25s; }
.footer-legal a:hover { color: var(--gold); }

/* --- REVEAL ANIMATIONS --- */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.work-grid .reveal-up:nth-child(2) { transition-delay: 0.1s; }
.work-grid .reveal-up:nth-child(3) { transition-delay: 0.2s; }
.work-grid .reveal-up:nth-child(4) { transition-delay: 0.3s; }

.services-right .reveal-up:nth-child(2) { transition-delay: 0.1s; }
.services-right .reveal-up:nth-child(3) { transition-delay: 0.2s; }
.services-right .reveal-up:nth-child(4) { transition-delay: 0.3s; }

.process-steps .reveal-up:nth-child(2) { transition-delay: 0.1s; }
.process-steps .reveal-up:nth-child(3) { transition-delay: 0.2s; }
.process-steps .reveal-up:nth-child(4) { transition-delay: 0.3s; }

.testi-grid .reveal-up:nth-child(2) { transition-delay: 0.1s; }
.testi-grid .reveal-up:nth-child(3) { transition-delay: 0.2s; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .work-card--featured { grid-column: span 2; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid .testi-card:last-child { grid-column: span 2; }
  .services-inner { grid-template-columns: 1fr; }
  .services-left { position: static; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-menu-toggle { display: flex; }
  .hero-bg-text { font-size: 38vw; top: 30%; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card--featured { grid-column: span 1; }
  .process-steps { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi-grid .testi-card:last-child { grid-column: span 1; }
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-nav { flex-wrap: wrap; gap: 1rem; }
  .stat-divider { display: none; }
  .hero-stat-strip { gap: 1.2rem; }
  .br-desk { display: none; }
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
  .btn-primary, .btn-submit, .form-group input,
  .form-group select, .form-group textarea { cursor: pointer; }
}

@media (max-width: 480px) {
  .hero-content { padding-top: 9rem; }
  .hero-scroll-hint { display: none; }
}
