:root {
  --gold: #B8963E;
  --gold-light: #D4AF6A;
  --gold-bright: #E8C97A;
  --gold-dim: #6B5420;
  --black: #050505;
  --dark: #080808;
  --dark2: #0c0c0c;
  --surface: #0f0f0f;
  --text: #E8E4DC;
  --text-dim: #7A7570;
  --text-mid: #B0A898;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* Cursor */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold-light);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .15s, height .15s;
}

.cursor-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(184, 150, 62, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .3s ease-out, height .3s ease-out;
}

/* Background */
.bg-scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 70% 30%, rgba(20, 16, 8, 0.95) 0%, transparent 70%),
    radial-gradient(ellipse 100% 100% at 50% 0%, rgba(30, 22, 6, 0.35) 0%, transparent 50%),
    linear-gradient(160deg, #0a0806 0%, #050505 40%, #080808 100%);
}

.bg-vignette {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 120% 120% at 50% 50%, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
}

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

.bg-glow {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  top: -10%;
  right: -5%;
  width: 700px;
  max-width: 100vw;
  height: 600px;
  background: radial-gradient(ellipse, rgba(184, 150, 62, 0.045) 0%, transparent 65%);
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 72px;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.97) 0%, rgba(5, 5, 5, 0.0) 100%);
  border-bottom: 1px solid rgba(184, 150, 62, 0.07);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.nav-logo img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(184, 150, 62, 0.35));
}

.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  line-height: 1.1;
}

.nav-logo-text span {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 8px;
  font-weight: 400;
  color: var(--gold-dim);
  letter-spacing: 0.45em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 48px;
  list-style: none;
}

.nav-links a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  position: relative;
  transition: color .3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .35s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  padding: 11px 30px;
  border: 1px solid rgba(184, 150, 62, 0.4);
  color: var(--gold);
  text-decoration: none;
  background: transparent;
  transition: background .3s, color .3s, border-color .3s;
}

.nav-cta:hover {
  background: rgba(184, 150, 62, 0.1);
  border-color: var(--gold);
  color: var(--gold-bright);
}

/* PAGE HERO */
.page-hero {
  position: relative;
  z-index: 1;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 160px 72px 100px;
  overflow: hidden;
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(184, 150, 62, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 150, 62, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
}

.page-hero-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 70px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(184, 150, 62, 0.2) 30%, rgba(184, 150, 62, 0.4) 50%, rgba(184, 150, 62, 0.2) 70%, transparent);
}

.page-hero-overline {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  opacity: 0;
  animation: riseIn .9s ease forwards .2s;
}

.page-hero-overline::before,
.page-hero-overline::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 90px);
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.02em;
  opacity: 0;
  animation: riseIn .9s ease forwards .4s;
}

.page-hero-title em {
  color: var(--gold-light);
  font-style: italic;
}

.page-hero-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto;
  opacity: 0;
  animation: riseIn .9s ease forwards .6s;
}

.page-hero-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-dim);
  max-width: 500px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  opacity: 0;
  animation: riseIn .9s ease forwards .8s;
}

/* SERVICES GRID */
.services-section {
  position: relative;
  z-index: 1;
  padding: 80px 140px 120px;
  background: var(--dark);
}

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.services-full-grid--two {
  grid-template-columns: repeat(2, 1fr);
}

.service-card {
  background: rgba(184, 150, 62, 0.02);
  border: 1px solid rgba(184, 150, 62, 0.07);
  padding: 56px 40px;
  position: relative;
  overflow: hidden;
  transition: background .4s, border-color .4s;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: width .6s cubic-bezier(.4, 0, .2, 1);
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(270deg, var(--gold), transparent);
  transition: width .6s cubic-bezier(.4, 0, .2, 1) .1s;
}

.service-card:hover {
  background: rgba(184, 150, 62, 0.05);
  border-color: rgba(184, 150, 62, 0.22);
}

.service-card:hover::before,
.service-card:hover::after {
  width: 100%;
}

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: rgba(184, 150, 62, 0.06);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 24px;
}

.service-icon {
  width: 42px;
  height: 42px;
  color: var(--gold);
  opacity: 0.75;
  margin-bottom: 28px;
}

.service-name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.service-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.85;
  margin-bottom: 28px;
}

/* ─── DETAILED SERVICE CARD ADDITIONS ─── */
.service-detail-heading {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 28px;
  margin-bottom: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(184, 150, 62, 0.08);
}

.service-list {
  list-style: none;
  margin-bottom: 8px;
}

.service-list li {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.8;
  padding-left: 18px;
  position: relative;
  margin-bottom: 4px;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-dim);
}

.service-list--excluded li::before {
  background: transparent;
  border: 1px solid rgba(184, 150, 62, 0.3);
}

/* Pricing table */
.pricing-table {
  margin-bottom: 8px;
}

.pricing-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(184, 150, 62, 0.05);
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.02em;
}

.pricing-detail {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-dim);
  flex: 1;
}

.pricing-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}

.pricing-row--highlight .pricing-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}

.pricing-row--delivery .pricing-label {
  color: var(--gold-dim);
}

/* Service note / disclaimer */
.service-note {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding: 20px;
  background: rgba(184, 150, 62, 0.03);
  border: 1px solid rgba(184, 150, 62, 0.08);
}

.service-note-icon {
  width: 20px;
  height: 20px;
  color: var(--gold-dim);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-note p {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.8;
}

/* Sample report button */
.btn-sample-report {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  padding: 12px 24px;
  border: 1px solid rgba(184, 150, 62, 0.25);
  transition: background .3s, border-color .3s, color .3s;
}

.btn-sample-report:hover {
  background: rgba(184, 150, 62, 0.08);
  border-color: var(--gold);
  color: var(--gold-bright);
}

/* ─── QUICK CHECK SECTION ─── */
.quick-check-section {
  position: relative;
  z-index: 1;
  padding: 100px 140px;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quick-check-section .section-label {
  position: absolute;
  top: 48px;
  left: 72px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.4em;
  color: var(--gold-dim);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 14px;
}

.quick-check-section .section-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold-dim);
}

.quick-check-content {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.quick-check-left {
  flex: 1;
}

.quick-check-left .section-title {
  text-align: left;
  font-size: clamp(32px, 3vw, 48px);
}

.quick-check-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.9;
  max-width: 540px;
}

/* PROCESS SECTION */
.process-section {
  position: relative;
  z-index: 1;
  padding: 120px 140px;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-section .section-label {
  position: absolute;
  top: 48px;
  left: 72px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.4em;
  color: var(--gold-dim);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 14px;
}

.process-section .section-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold-dim);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: 100%;
  max-width: 1100px;
  margin-top: 72px;
}

.process-step {
  padding: 48px 36px;
  border: 1px solid rgba(184, 150, 62, 0.07);
  background: rgba(184, 150, 62, 0.02);
  position: relative;
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  color: rgba(184, 150, 62, 0.08);
  line-height: 1;
  margin-bottom: 24px;
}

.step-name {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.step-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.8;
}

.step-arrow {
  position: absolute;
  top: 50%;
  right: -1px;
  width: 12px;
  height: 12px;
  border-right: 1px solid rgba(184, 150, 62, 0.3);
  border-top: 1px solid rgba(184, 150, 62, 0.3);
  transform: translateY(-50%) rotate(45deg);
  z-index: 2;
}

.process-step:last-child .step-arrow {
  display: none;
}

/* CTA BAND */
.cta-band {
  position: relative;
  z-index: 1;
  background: var(--dark2);
  border-top: 1px solid rgba(184, 150, 62, 0.1);
  border-bottom: 1px solid rgba(184, 150, 62, 0.1);
  padding: 80px 140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.cta-band-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 14px;
}

.cta-band-left h2 em {
  color: var(--gold-light);
  font-style: italic;
}

.cta-band-left p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 480px;
}

.btn-gold {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  padding: 17px 48px;
  background: var(--gold);
  color: var(--black);
  text-decoration: none;
  white-space: nowrap;
  transition: background .3s, box-shadow .3s;
}

.btn-gold:hover {
  background: var(--gold-bright);
  box-shadow: 0 0 40px rgba(184, 150, 62, 0.25);
}

/* FOOTER */
footer {
  position: relative;
  z-index: 1;
  background: var(--dark2);
  border-top: 1px solid rgba(184, 150, 62, 0.08);
  padding: 28px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer p {
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--text-dim);
  text-transform: uppercase;
}

footer p span {
  color: var(--gold-dim);
}

/* Section header shared */
.section-header {
  text-align: center;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.section-title em {
  color: var(--gold-light);
  font-style: italic;
}

.section-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto;
}

.section-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-dim);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── HAMBURGER ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 300;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: transform .3s, opacity .3s, width .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5,5,5,0.98);
  z-index: 250;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  transition: opacity .3s;
}
.nav-mobile-menu.open { display: flex; opacity: 1; }
.nav-mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--text-dim);
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: color .3s;
}
.nav-mobile-menu a:hover,
.nav-mobile-menu a.active { color: var(--gold-light); }
.nav-mobile-menu .nav-mobile-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  padding: 14px 40px;
  border: 1px solid rgba(184,150,62,0.4);
  color: var(--gold);
  margin-top: 8px;
}

/* ─── ULTRAWIDE (>=1800px) ─── */
@media (min-width: 1800px) {
  nav { padding: 32px 120px; }
  .services-section { padding: 100px 180px 140px; }
  .services-full-grid { max-width: 1500px; }
  .quick-check-section { padding: 120px 180px; }
  .process-section { padding: 140px 180px; }
  .process-steps { max-width: 1400px; }
  .cta-band { padding: 100px 180px; }
  footer { padding: 32px 120px; }
}

/* ─── LAPTOP (<=1200px) ─── */
@media (max-width: 1200px) {
  nav { padding: 24px 48px; }
  .services-section { padding: 60px 60px 100px; }
  .quick-check-section { padding: 80px 60px; }
  .process-section { padding: 100px 60px; }
  .cta-band { padding: 60px 60px; }
  footer { padding: 24px 48px; }
}

/* ─── TABLET (<=1000px) ─── */
@media (max-width: 1000px) {
  nav { padding: 20px 28px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .page-hero { padding: 120px 28px 60px; }
  .page-hero-line { display: none; }
  .services-section { padding: 60px 28px 80px; }
  .services-full-grid { grid-template-columns: 1fr; }
  .services-full-grid--two { grid-template-columns: 1fr; }
  .quick-check-section { padding: 80px 28px; }
  .quick-check-section .section-label { left: 28px; }
  .quick-check-content { flex-direction: column; gap: 32px; }
  .btn-gold { text-align: center; white-space: normal; }
  .process-section { padding: 80px 28px; }
  .process-section .section-label { left: 28px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .step-arrow { display: none; }
  .cta-band { padding: 60px 28px; flex-direction: column; gap: 32px; }
  .cta-band-left h2 { font-size: clamp(28px, 6vw, 42px); }
  footer { padding: 24px 28px; flex-direction: column; gap: 8px; text-align: center; }
}

/* ─── MOBILE (<=600px) ─── */
@media (max-width: 600px) {
  .page-hero { padding: 100px 20px 48px; }
  .page-hero-title { font-size: clamp(40px, 11vw, 64px); }
  .services-section { padding: 48px 20px 64px; }
  .service-card { padding: 36px 24px; }
  .pricing-price { font-size: 22px; }
  .pricing-row--highlight .pricing-label { font-size: 22px; }
  .quick-check-section { padding: 64px 20px; }
  .quick-check-left .section-title { font-size: clamp(28px, 7vw, 40px); }
  .process-section { padding: 64px 20px; }
  .process-steps { grid-template-columns: 1fr; }
  .cta-band { padding: 48px 20px; }
  .btn-gold { width: 100%; white-space: normal; text-align: center; }
  .btn-sample-report { width: 100%; justify-content: center; white-space: normal; text-align: center; }
  footer { padding: 20px; }
}
