*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --ink: #0A0A0B;
  --ink2: #111114;
  --ink3: #18181C;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-pale: rgba(201,168,76,0.12);
  --white: #F5F4F0;
  --mist: #8C8B86;
  --rule: rgba(201,168,76,0.18);
  --rule2: rgba(245,244,240,0.07);
}

body {
  font-family: 'Instrument Sans', sans-serif;
  background: var(--ink);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

/* CUSTOM CURSOR */
.cursor {
  position: fixed; z-index: 9999;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  mix-blend-mode: screen;
}
.cursor-ring {
  position: fixed; z-index: 9998;
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: transform 0.12s ease, width 0.3s, height 0.3s;
}

/* NOISE TEXTURE */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 1;
  pointer-events: none;
  opacity: 0.028;
  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");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4rem;
  height: 72px;
  background: rgba(10,10,11,0.92);
  backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid var(--rule2);
}

.nav-logo img {
  height: 34px; width: auto;
  filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(5deg) brightness(0.85);
}

.nav-center {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; gap: 3rem;
  list-style: none;
}
.nav-center a {
  color: var(--mist);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.25s;
  position: relative;
}
.nav-center a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-center a:hover { color: var(--white); }
.nav-center a:hover::after { transform: scaleX(1); }

.nav-right {
  display: flex; align-items: center; gap: 2rem;
}
.nav-contact {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--rule);
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s;
}
.nav-contact:hover {
  background: var(--gold);
  color: var(--ink);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-lines {
  position: absolute; inset: 0; z-index: 0;
  display: flex;
}
.hero-line {
  flex: 1;
  border-right: 1px solid var(--rule2);
}

.hero-glow {
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 65%);
  top: -200px; right: -100px;
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 8rem;
  position: relative; z-index: 2;
  gap: 4rem;
}

.hero-left {}

.hero-eyebrow {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2.5rem;
}
.eyebrow-line {
  width: 40px; height: 1px;
  background: var(--gold);
}
.eyebrow-text {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 5.5vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 2rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--mist);
  max-width: 420px;
  font-weight: 300;
  margin-bottom: 3rem;
}

.hero-actions { display: flex; gap: 1.5rem; align-items: center; }

.btn-gold {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s, transform 0.25s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-gold svg { transition: transform 0.25s; }
.btn-gold:hover svg { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--mist);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.25s;
}
.btn-ghost:hover { color: var(--white); }

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--rule2);
  border: 1px solid var(--rule2);
}
.hero-stat {
  background: var(--ink2);
  padding: 2.2rem 2.5rem;
  transition: background 0.3s;
}
.hero-stat:hover { background: var(--ink3); }
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.hero-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
  font-weight: 500;
}

.hero-bottom {
  position: relative; z-index: 2;
  padding: 2rem 0;
  border-top: 1px solid var(--rule2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--mist);
  letter-spacing: 0.05em;
}
.hero-scroll {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mist);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* TICKER */
.ticker {
  background: var(--gold);
  padding: 0.9rem 0;
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker-item {
  display: flex; align-items: center; gap: 2rem;
  padding: 0 2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.ticker-dot {
  width: 4px; height: 4px;
  background: rgba(10,10,11,0.4);
  border-radius: 50%;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* SECTIONS BASE */
section { padding: 8rem 4rem; }
.section-label {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem;
}
.label-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0.05em;
}
.label-line { flex: 0 0 32px; height: 1px; background: var(--rule); }
.label-text {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist);
  font-weight: 500;
}

.section-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  max-width: 700px;
  margin-bottom: 1.5rem;
}
.section-h2 em { font-style: italic; color: var(--gold-light); }

.section-sub {
  font-size: 0.9rem;
  color: var(--mist);
  max-width: 480px;
  line-height: 1.8;
  font-weight: 300;
}

/* SERVICES */
.services { background: var(--ink); }
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: end;
}
.services-note {
  font-size: 0.82rem;
  color: var(--mist);
  line-height: 1.8;
  font-weight: 300;
  border-left: 1px solid var(--rule);
  padding-left: 1.5rem;
  align-self: end;
}

.services-table {
  border-top: 1px solid var(--rule2);
}
.service-row {
  display: grid;
  grid-template-columns: 3rem 1fr 1fr auto;
  align-items: center;
  gap: 3rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--rule2);
  transition: background 0.3s;
  cursor: default;
  position: relative;
}
.service-row::before {
  content: '';
  position: absolute; left: -4rem; right: -4rem; top: 0; bottom: 0;
  background: var(--gold-pale);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-row:hover::before { opacity: 1; }

.service-idx {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: var(--mist);
  font-weight: 400;
}
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
  position: relative; z-index: 1;
  transition: color 0.3s;
}
.service-row:hover .service-name { color: var(--gold-light); }
.service-desc {
  font-size: 0.82rem;
  color: var(--mist);
  line-height: 1.7;
  font-weight: 300;
  position: relative; z-index: 1;
}
.service-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--gold);
  white-space: nowrap;
  position: relative; z-index: 1;
  text-align: right;
}

/* APPROACH */
.approach { background: var(--ink2); }
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
  margin-top: 5rem;
}
.approach-steps { display: flex; flex-direction: column; }
.approach-step {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--rule2);
  transition: background 0.3s;
}
.step-num-large {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  transition: color 0.3s;
}
.approach-step:hover .step-num-large { color: rgba(201,168,76,0.4); }
.step-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--white);
}
.step-content p {
  font-size: 0.85rem;
  color: var(--mist);
  line-height: 1.8;
  font-weight: 300;
}

.approach-visual {
  position: sticky; top: 6rem;
  background: var(--ink3);
  border: 1px solid var(--rule2);
  aspect-ratio: 3/4;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
  overflow: hidden;
}
.approach-visual-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.approach-visual-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14rem;
  font-weight: 300;
  color: rgba(201,168,76,0.04);
  line-height: 1;
  letter-spacing: -0.05em;
  user-select: none;
}
.approach-quote {
  position: relative; z-index: 1;
}
.approach-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.approach-quote cite {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
  font-weight: 500;
}

/* WHY */
.why { background: var(--ink); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule2);
  border: 1px solid var(--rule2);
  margin-top: 5rem;
}
.why-card {
  background: var(--ink);
  padding: 3rem 2.5rem;
  transition: background 0.3s;
  position: relative;
}
.why-card:hover { background: var(--ink2); }
.why-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  margin-bottom: 2rem;
}
.why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--white);
}
.why-card p {
  font-size: 0.83rem;
  color: var(--mist);
  line-height: 1.8;
  font-weight: 300;
}
.why-card-tag {
  margin-top: 2rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* CTA */
.cta-section {
  background: var(--ink2);
  padding: 8rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  border-top: 1px solid var(--rule2);
  border-bottom: 1px solid var(--rule2);
}
.cta-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.cta-left h2 em { font-style: italic; color: var(--gold-light); }
.cta-left p {
  font-size: 0.9rem;
  color: var(--mist);
  line-height: 1.8;
  font-weight: 300;
  max-width: 380px;
  margin-bottom: 3rem;
}

.cta-right {}
.cta-contact-row {
  padding: 2rem 0;
  border-bottom: 1px solid var(--rule2);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}
.cta-contact-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.cta-contact-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--white);
  text-decoration: none;
  transition: color 0.25s;
}
.cta-contact-value:hover { color: var(--gold-light); }
.cta-arrow {
  width: 40px; height: 40px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s;
  font-size: 0.9rem;
}
.cta-arrow:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

/* FOOTER */
footer {
  background: var(--ink);
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  gap: 3rem;
  border-top: 1px solid var(--rule2);
}
.footer-logo img {
  height: 28px; width: auto;
  filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(5deg) brightness(0.8);
  margin-bottom: 1rem;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--mist);
}
.footer-nav { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-nav a {
  color: var(--mist);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s;
  font-weight: 500;
}
.footer-nav a:hover { color: var(--gold); }
.footer-right { text-align: right; }
.footer-copy {
  font-size: 0.72rem;
  color: var(--mist);
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

/* REVEAL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(28px); 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-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* HERO ENTRANCE */
.hero-eyebrow { animation: fadeIn 0.8s 0.3s both; }
.hero h1 { animation: fadeIn 0.9s 0.5s both; }
.hero-desc { animation: fadeIn 0.8s 0.7s both; }
.hero-actions { animation: fadeIn 0.8s 0.85s both; }
.hero-right { animation: fadeIn 0.9s 0.6s both; }
.hero-bottom { animation: fadeIn 0.8s 1s both; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-center { display: none; }
  section { padding: 5rem 1.5rem; }
  .hero { padding: 0 1.5rem; }
  .hero-content { grid-template-columns: 1fr; padding-top: 7rem; }
  .hero-right { display: none; }
  .hero h1 { font-size: 3rem; }
  .services-header { grid-template-columns: 1fr; gap: 2rem; }
  .service-row { grid-template-columns: 2rem 1fr; gap: 1.5rem; }
  .service-desc, .service-price { display: none; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-visual { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-section { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 1.5rem; }
  footer { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .footer-right { text-align: left; }
}
